home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 2 of 2).iso / voydemo / install.inf < prev    next >
INI File  |  1994-11-09  |  6KB  |  243 lines

  1.  
  2. //*
  3. //* Created with by Catalyst-PC, 
  4. //* by Troy A. Miles and Overdrive Technology
  5. //* for more information contact Overdrive @ 714-837-7106
  6. //*
  7.  
  8.  
  9. [init]
  10. createvar=choice, VAR_INTEGER, 1, 0, 10
  11. createvar=topic, VAR_STRING, 20, "help"
  12. createvar=drive, VAR_INTEGER, 0, 0, 26
  13. createvar=path, VAR_STRING, 40, "\VOYDEMO"
  14. createvar=sndcard, VAR_INTEGER, 0, 0, 10
  15. createvar=temp, VAR_INTEGER, 0, 0, 10
  16. createvar=dma, VAR_INTEGER, 0, 0, 10
  17. createvar=irq, VAR_INTEGER, 0, 0, 10
  18.  
  19. createvar=title, VAR_WINDOW
  20. openwindow=title, 1, 1, 76, 1, BLACK, LT_GREY, NONE, ' ', TRUE
  21. display=title,CENTER_JUST,4,0,"Voyeur Demo Installation Program"
  22.  
  23. createvar=copyr, VAR_WINDOW
  24. openwindow=copyr, 1, 22, 76, 2, BLACK, LT_GREY, NONE, ' ', TRUE
  25. display=copyr, CENTER_JUST, 0, 0, "Press [ESC] to exit, press [F1] for help."
  26. display=copyr, CENTER_JUST, 0, 1, "Copyright (C) 1994 Interplay Productions"
  27.  
  28.  
  29. [term]
  30. closewindow=copyr
  31. destroyvar=copyr
  32. closewindow=title
  33. destroyvar=title
  34. destroyvar=sndcard
  35. destroyvar=path
  36. destroyvar=drive
  37. destroyvar=topic
  38. destroyvar=choice
  39. destroyvar=temp
  40. destroyvar=dma
  41. destroyvar=irq
  42.  
  43.  
  44. [exit]
  45. createvar=ExitWin, VAR_WINDOW
  46. openwindow=ExitWin, 11, 8, 54, 7, LT_YELLOW, DK_BLUE, DOUBLE, ' ', TRUE
  47. form=ExitWin
  48. "Press ESC again to exit. Any other key to continue."
  49. keychoice=choice,ESC,ANYKEY
  50. closewindow=ExitWin
  51. destroyvar=ExitWin
  52.  
  53.  
  54. [help]
  55. createvar=helpwin, VAR_WINDOW
  56. openwindow=helpwin, 1, 4, 74, 15, WHITE, DK_RED, DOUBLE, ' ', TRUE
  57. form=helpwin
  58. "No help available for this topic."
  59. waitkey
  60. closewindow=helpwin
  61. destroyvar=helpwin
  62.  
  63.  
  64. [drivehelp]
  65. createvar=helpwin, VAR_WINDOW
  66. openwindow=helpwin, 1, 4, 74, 15, WHITE, DK_RED, DOUBLE, ' ', TRUE
  67. form=helpwin
  68. "In the list box are all of the valid hard drives install has found in "
  69. "your system.  Scroll the list up and down with the arrow keys until "
  70. "the drive you wish to install to is highlighted, then press 'ENTER'. "
  71. waitkey
  72. closewindow=helpwin
  73. destroyvar=helpwin
  74.  
  75.  
  76. [dirhelp]
  77. createvar=helpwin, VAR_WINDOW
  78. openwindow=helpwin, 1, 4, 74, 15, WHITE, DK_RED, DOUBLE, ' ', TRUE
  79. form=helpwin
  80. "You can change the startup directory to any legal DOS directory name, "
  81. "but it is recommended that you keep it as '\\VOYDEMO'."
  82. waitkey
  83. closewindow=helpwin
  84. destroyvar=helpwin
  85.  
  86.  
  87. [sndhelp]
  88. createvar=helpwin, VAR_WINDOW
  89. openwindow=helpwin, 1, 4, 74, 15, WHITE, DK_RED, DOUBLE, ' ', TRUE
  90. form=helpwin
  91. "The Voyeur Demo requires a sound card to run.  Scroll the list up and down "
  92. "using the arrow keys until your sound card is highlighted, then "
  93. "press 'ENTER'. If you are unsure which sound card you have please "
  94. "refer to your computer's documentation."
  95. waitkey
  96. closewindow=helpwin
  97. destroyvar=helpwin
  98.  
  99.  
  100. [main]
  101. pages=Intro, DriveChoice, getpath, sound
  102.  
  103. [Intro]
  104. equatevar=topic, "help"
  105. createvar=IntroWin, VAR_WINDOW
  106. openwindow=IntroWin, 11, 5, 54, 10, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  107. form=IntroWin
  108. "The Voyeur Demo needs to create a directory on your hard disk and copy "
  109. "approximately 200 bytes worth of data there. This directory will be "
  110. "where you start the Voyeur Demo from."
  111.  
  112. display=IntroWin, CENTER_JUST, 0, 9, "Press any key to continue."
  113. waitkey
  114. closewindow=IntroWin
  115. destroyvar=IntroWin
  116.  
  117.  
  118. [DriveChoice]
  119. equatevar=topic, "drivehelp"
  120. createvar=DriveWin, VAR_WINDOW
  121. openwindow=DriveWin, 11, 5, 54, 10, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  122. form=DriveWin
  123. "Which drive would you like to install to:"
  124.  
  125. listbox=drive, drives, 2, WHITE, DK_VIOLET, SINGLE, FALSE, DriveWin
  126.  
  127. closewindow=DriveWin
  128. destroyvar=DriveWin
  129.  
  130.  
  131. [AskPath]
  132. equatevar=topic, "dirhelp"
  133. createvar=PathWin, VAR_WINDOW
  134. openwindow=PathWin, 11, 5, 54, 10, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  135. field=path, '~'   
  136. form=PathWin
  137. "Please enter the destination directory:\n"
  138. "~\n"
  139. getinput=PathWin
  140. closewindow=PathWin
  141. destroyvar=PathWin
  142.  
  143.  
  144. [AskSound]
  145. equatevar=topic, "sndhelp"
  146. createvar=SndWin, VAR_WINDOW
  147. openwindow=SndWin, 11, 4, 54, 13, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  148. form=SndWin
  149. "Please select your sound card."
  150.  
  151. createvar=sndcards, VAR_LIST, 7, 40
  152. "Advanced Gravis Ultra Sound         "
  153. "Creative Labs Sound Blaster         "
  154. "Creative Labs Sound Blaster 16      "
  155. "Creative Labs Sound Blaster Pro     "
  156. "Creative Labs Sound Blaster Clone   "
  157. "MediaVision Pro Audio Spectrum 8    "
  158. "MediaVision Pro Audio Spectrum 16   "
  159.  
  160. listbox=sndcard, sndcards, 2, WHITE, DK_VIOLET, SINGLE, FALSE, SndWin
  161. closewindow=SndWin
  162. destroyvar=SndWin
  163.  
  164.  
  165. [AskDMA]
  166. equatevar=topic, "sndhelp"
  167. createvar=SndWin, VAR_WINDOW
  168. openwindow=SndWin, 11, 4, 54, 13, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  169. form=SndWin
  170. "Please select your sound card's DMA number."
  171.  
  172. createvar=dmas, VAR_LIST, 9, 13
  173. "0"
  174. "1"
  175. "2"
  176. "3"
  177. "4"
  178. "5"
  179. "6"
  180. "7"
  181. "NONE"
  182. listbox=dma, dmas, 2, WHITE, DK_VIOLET, SINGLE, FALSE, SndWin
  183. closewindow=SndWin
  184. destroyvar=SndWin
  185. destroyvar=dmas
  186.  
  187.  
  188. [AskIRQ]
  189. equatevar=topic, "sndhelp"
  190. createvar=Win, VAR_WINDOW
  191. openwindow=Win, 11, 4, 54, 13, WHITE, DK_VIOLET, SINGLE, ' ', TRUE
  192. form=Win
  193. "Please select your sound card's IRQ number."
  194.  
  195. createvar=irqs, VAR_LIST, 9, 13
  196. "2"
  197. "3"
  198. "5"
  199. "7"
  200. "10"
  201. "11"
  202. "12"
  203. "15"
  204. "NONE"
  205. listbox=irq, irqs, 2, WHITE, DK_VIOLET, SINGLE, FALSE, Win
  206. closewindow=Win
  207. destroyvar=Win
  208. destroyvar=irqs
  209.  
  210.  
  211. [confirm]
  212. equatevar=topic, "help"
  213. createvar=cchoices, VAR_LIST, 2, 22
  214. "Change selections"
  215. "Install Voyeur Demo"
  216. createvar=ConfirmWin, VAR_WINDOW
  217. openwindow=ConfirmWin, 11, 8, 54, 7, WHITE, DK_CYAN, SDOUBLE, ' ', TRUE
  218. display=ConfirmWin, CENTER_JUST, 0, 1, "Would you like to change any of your choices?"
  219. listbox=temp, cchoices, 3, WHITE, DK_CYAN, SINGLE, FALSE, ConfirmWin
  220. closewindow=ConfirmWin
  221. destroyvar=ConfirmWin
  222. destroyvar=cchoices
  223.  
  224.  
  225. [success]
  226. equatevar=topic, "help"
  227. createvar=SuccessWin, VAR_WINDOW
  228. openwindow=SuccessWin, 10, 7, 60, 5, WHITE, DK_CYAN, SINGLE, ' ', TRUE
  229. form=SuccessWin
  230. "Install was successful.  Type 'VOYDEMO' in the destination directory "
  231. "to begin."
  232. display=SuccessWin, CENTER_JUST, 0, 4, "Press any key to exit."
  233. display=copyr, CENTER_JUST, 0, 0, "                                         "
  234. waitkey
  235. closewindow=SuccessWin
  236. destroyvar=SuccessWin
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.